This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
~George Rehipipulgon 23.Oct.03 11:19 PM a Web browser Domino Designer6.0.1 CF1Windows 2000
I am trying to set a field value on a notes form, through java code.
The field from which I am reading the value is number type notes field.
The field into which I am trying to set the value is also a number type notes field.
The code compiles okay. But when I run the code it gives an error on the last line of the code snippet below.
Any help is appreciated.
Thanks
--------------------------------------------
int sso_var = empdoc.getItemValueInteger("EMP_SSONum"); //getting value
//getting item to set value.
item = trandoc.getFirstItem("FWDFromSSONum");
// trying to set the value.
item.setValueInteger(sso_var);